diff options
| author | real-zephex <[email protected]> | 2024-03-25 11:33:09 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-25 11:33:09 +0530 |
| commit | 9202a2b6790e57dc35d0563d014e89d981a65e37 (patch) | |
| tree | f2258b96400d6df9753c2c52531ba7f8897b9fa3 /src/app/manga/[title]/title.module.css | |
| parent | fix: requests are revalidated after 30 mins. this prevents stale data from be... (diff) | |
| download | dramalama-9202a2b6790e57dc35d0563d014e89d981a65e37.tar.xz dramalama-9202a2b6790e57dc35d0563d014e89d981a65e37.zip | |
feature added: mangas are now available
Diffstat (limited to 'src/app/manga/[title]/title.module.css')
| -rw-r--r-- | src/app/manga/[title]/title.module.css | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/app/manga/[title]/title.module.css b/src/app/manga/[title]/title.module.css new file mode 100644 index 0000000..eef08ba --- /dev/null +++ b/src/app/manga/[title]/title.module.css @@ -0,0 +1,61 @@ +.Main { + max-width: 90%; + margin: 0px auto; +} + +.MangaContainer { + display: flex; + flex-direction: column; +} + +.SearchedFor { + color: white; + text-align: center; + font-family: "Kanit"; + font-size: 26px; +} + +.MangaEntries { + display: flex; + flex-direction: row; + margin: 10px; + padding: 10px; + border-style: dotted; + border-color: #363636 #474747; + border-radius: 10px; + border-width: 4px; + align-items: center; + cursor: pointer; + transition: transform 0.2s linear; +} + +.MangaEntries:hover { + transition: transform 0.2s linear; + transform: scale(1.01); + border-color: #535353 #686868; + +} + +.MangaInfo { + color: white; + margin-left: 20px; +} + +.MangaTitle { + font-family: "Lato"; + margin: 0px; + font-size: 22px; + color: var(--neon-green); +} + +.MangaStatus { + color: var(--soft-purple); +} + +.MangaVolume { + color: #FFACAC; +} + +.MangaChapters { + color: #FFEBB4 +}
\ No newline at end of file |